html {
    background-color: #111111;
    color: white;
    overflow: scroll;
}

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    margin: 0px;
    padding: 10px;
    position: sticky;
    top: 0px;
    width: calc(100% - 20px);
    background-color: #222222;
    border-bottom: solid #aaaaaa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


footer {
    position: fixed;
    bottom: 0px;
    width: calc(100% - 20px);
    background-color: black;
    border-top: solid white;
    display: grid;
    height: 10%;
    grid-template-columns: 2fr 2fr 3fr 3fr 1fr 1fr;
    gap: 5px;
    padding: 10px;
    display: none;
    padding-bottom: 20px;
}

h1,
h2 {
    font-weight: bolder;
}

button {
    display: flex;
    align-items: center;
    color: white;
    font-size: 15pt;
    padding: 0px;
    border-radius: 8px;
    border: none;
    font-weight: 650;
}

svg {
    font-weight: bolder;

}

main {
    margin: 0px 50px 0px 50px;
    padding: 20px 0px 20px 0px;
    min-height: 100vh;
}

label,
input,
textarea {
    font-size: 15pt;
    max-height: 75%;
    max-width: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

input,
textarea {
    border-radius: 5px;
    background-color: #222222;
    border: none;
    padding: 2px;
    color: white;
    align-content: start;
    border: solid #99999999 2px;
    font-weight: normal;
}

.task {
    overflow-wrap: break-word;
    background-color: #111111;
    padding: 10px;
    border-radius: 10px;
    width: calc(33% - 35px);
}

#taskHolder, #completeTaskHolder {
    display: flex;
    gap: 15px;
    width: calc(100%);
    flex-wrap: wrap;
}

#buttons {
    display: flex;
    justify-content: right;
    gap: 20px;
    padding-right: 5px;
    z-index: 2;
    position: fixed;
    right: 5px;
    bottom: 2.5%;
}

#buttons button {
    padding: 10px;
}